Enum QueueType

java.lang.Object
java.lang.Enum<QueueType>
com.cisco.pt.ipc.enums.QueueType
All Implemented Interfaces:
Serializable, Comparable<QueueType>, Constable

public enum QueueType extends Enum<QueueType>
An enum for the IPC's QueueType values
Author:
packettracerexapps@external.cisco.com
  • Enum Constant Details

    • FIFO_QUEUE

      public static final QueueType FIFO_QUEUE
    • PRIORITY_QUEUE

      public static final QueueType PRIORITY_QUEUE
    • STRICT_PRIORITY_QUEUE

      public static final QueueType STRICT_PRIORITY_QUEUE
    • CUSTOM_QUEUE

      public static final QueueType CUSTOM_QUEUE
    • WEIGHTED_FAIR_QUEUE

      public static final QueueType WEIGHTED_FAIR_QUEUE
    • CLASS_BASED_WEIGHTED_FAIR_QUEUE

      public static final QueueType CLASS_BASED_WEIGHTED_FAIR_QUEUE
    • LOW_LATENCY_QUEUE

      public static final QueueType LOW_LATENCY_QUEUE
  • Field Details

    • intValue

      protected int intValue
  • Method Details

    • values

      public static QueueType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static QueueType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getIntValue

      public int getIntValue()
    • fromIntValue

      public static QueueType fromIntValue(int value)
    • fromIntValue

      public static QueueType fromIntValue(Integer value)